home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac100% 1999 April
/
MAC100-1999-04.ISO.7z
/
MAC100-1999-04.ISO
/
オンラインソフト定点観測
/
Network
/
WebbToys 1.6 (PPC).sea
/
WT1.6(PPC)
/
WebbToys v1.6.1 (PPC).rsrc
/
STR#_5000.txt
< prev
next >
Wrap
Text File
|
1999-01-07
|
2KB
|
162 lines
wordDelimiter=put the wordDelimiter into oldDelimiter
set the wordDelimiter to |<character>|
set the wordDelimiter to oldDelimiter
numberFormat=put the numberFormat into oldFormat
set the numberFormat to |<character>|
set the numberFormat to oldFormat
multiEffect=set the multiEffect to true
|
set the multiEffect to false
lockMessages=set the lockMessages to true
|
set the lockMessages to false
lockScreen=set the lockScreen to true
|
set the lockScreen to false
lineDelimiter=put the lineDelimiter into oldDelimiter
set the lineDelimiter to |<character>|
set the lineDelimiter to oldDelimiter
itemDelimiter=put the itemDelimiter into oldDelimiter
set the itemDelimiter to |<character>|
set the itemDelimiter to oldDelimiter
--
repeat with...=repeat with |<variable>| = <value1> to <value2>
end repeat
repeat while...=repeat while |<logical>|
end repeat
repeat until...=repeat until |<logical>|
end repeat
repeat for...=repeat for |<value>| times
end repeat
repeat forever...=repeat forever
|
end repeat
--
try...catch...throw...end=try
|<statements>|
[throw <errorNumber>]
catch <errorNumber1>
<statements>
catch <errorNumber2>
<statements>
end try
switch...case...end=switch |<condition>|
case <value1>
-- case 1 statements
exit switch
case <value2>
-- case 2 statements
exit switch
end switch
if...then...else if...else...end=if |<logical1>| then
-- logical 1 true statements
else if <logical2> then
-- logical 2 true statements
else
-- both false statements
end if
if...then...else...end=if |<logical>| then
-- true statements
else
-- false statements
end if
if...then...else...=if |<logical>| then
-- true statements
else <false_statements>
if...then...end=if |<logical>| then
-- true statements
end if
if...then...=if |<logical>| then <true_statements>
--
on quitSuperCard...=on quitSuperCard
|
end quitSuperCard
on closeProject...=on closeProject
|
end closeProject
on closeWindow...=on closeWindow
|
end closeWindow
on closeBackground...=on closeBackground
|
end closeBackground
on closeCard...=on closeCard
|
end closeCard
--
on openCard...=on openCard
|
end openCard
on openBackground...=on openBackground
|
end openBackground
on openWindow...=on openWindow
|
end openWindow
on openProject...=on openProject
|
end openProject
on startUp=on startUp
|
end startUp
--
function...=function xxx
|
end xxx
on...=on xxx
|
end xxx